home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / c_toolbx.arc / DOCUMENT.H < prev    next >
Encoding:
C/C++ Source or Header  |  1988-03-30  |  460 b   |  18 lines

  1. /* document.h - defines document data structure */
  2.  
  3. /* lengths of document fields */
  4. #define NAME_LEN 65
  5. #define ADR_LEN  40
  6. #define DATE_LEN 10
  7. #define SUBJ_LEN 40
  8.  
  9. typedef struct
  10.   {  char  dname[NAME_LEN] ;        /* document file name */
  11.      char  addressee[ADR_LEN] ;     /* person document sent to */
  12.      char  date[DATE_LEN] ;        /* date the document was sent */
  13.      char  subject[SUBJ_LEN] ;        /* subject of the document */
  14.   }  DOCUMENT ;
  15.  
  16.  
  17.  
  18.